home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 19
/
Amiga Plus Leser CD 19.iso
/
Tools
/
ShareMailGiftware
/
Videokonverter
/
ffmpeg.SOURCE
/
h
/
stdint.h
< prev
Wrap
Text File
|
2002-07-04
|
267b
|
10 lines
#ifndef _STDINT_H_
#define _STDINT_H_
#define PRIu8 "u"
#define PRIu16 "u"
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
#include <sys/types.h>
#endif /* _STDINT_H_ */